home *** CD-ROM | disk | FTP | other *** search
/ Enter 2003 April / EnterCD 4_2003.iso / Multimedia / AlbumCreator 2.5 / AC2.exe / ww.swf / scripts / DefineButton2_40 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2002-07-24  |  599 b   |  25 lines

  1. on(release){
  2.    if(_root.thumbnails._currentframe == 1)
  3.    {
  4.       _root.page = _root.page + 1;
  5.       if(_root.page > _root.images.length)
  6.       {
  7.          _root.page -= _root.images.length;
  8.       }
  9.       _root.thumbnails.play();
  10.       i = 0;
  11.       while(i < 4)
  12.       {
  13.          if(_root.page + i < _root.images.length)
  14.          {
  15.             _root["desc" + (i + 1)] = _root.images[_root.page + i].desc;
  16.          }
  17.          else
  18.          {
  19.             _root["desc" + (i + 1)] = _root.images[_root.page + i - _root.images.length].desc;
  20.          }
  21.          i++;
  22.       }
  23.    }
  24. }
  25.